home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / readme.897 < prev    next >
Text File  |  1997-06-20  |  7KB  |  173 lines

  1. August 1997
  2. Dr. Dobb's Journal
  3.  
  4. SGISTL.ASC
  5. Title: THE SGI STANDARD TEMPLATE LIBRARY
  6. Keywords: AUG97    STL    C++    SGI
  7. Published source code accompanying the article by Matthew Austern 
  8. in which he examines the Silicon Graphics release of the STL. 
  9.  
  10. EMPTY.ASC
  11. Title: THE EMPTY MEMBER C++ OPTIMIZATION
  12. Keywords: AUG97    STL   C++
  13. Published source code accompanying the article by Nathan Myers in 
  14. which he asks the question "Although the STL is flexible, does it 
  15. use too much memory?" Nathan shows how the STL--and you--can use 
  16. empty subobjects without bloating your data requirements.
  17.  
  18. UTHASH.ASC
  19. Title: DESIGNING C++ INTERFACES TO C-LANGUAGE LIBRARIES
  20. Keywords: AUG97    C    C++    HASHING    TEMPLATES
  21. Published source code accompanying the article by Larry E. Baker, 
  22. Jr. in which he presents a C hash-table library and a C++ 
  23. template wrapper that takes it into the world of C++. Also see 
  24. UTHASH.ZIP.
  25.  
  26. UTHASH.ZIP
  27. Title: DESIGNING C++ INTERFACES TO C-LANGUAGE LIBRARIES
  28. Keywords: AUG97    C    C++    HASHING    TEMPLATES
  29. Unpublished source code accompanying the article by Larry 
  30. Baker, Jr. in which he presents a C hash-table library and a C++ 
  31. template wrapper that takes it into the world of C++. Requires 
  32. UNZIP/PKUNZIP to extract.
  33.  
  34. OBJECTC.ASC
  35. Title: DYNAMIC DESIGN PATTERNS IN OBJECTIVE-C
  36. Keywords: AUG97    C++   OBJECTIVE-C    PATTERNS
  37. Published source code accompanying the article by William Grosso 
  38. in which he examines patterns often used with Objective-C, but 
  39. not commonly used (or are used differently) with C++. 
  40.  
  41. JAVANMI.ASC
  42. Title: THE JAVA NATIVE METHOD INTERFACE AND WINDOWS
  43. Keywords: AUG97    JAVA   C++   JNI    WINDOWS
  44. Source code accompanying the article by Andrew Wilson in which he 
  45. examines how the JDK 1.1 implements a native calling convention--
  46. the Java Native Method Interface (JNI)--which makes it possible 
  47. for the stub library to do more than just convert types between 
  48. Java and C++. With JDK 1.1, you can create new instances of Java 
  49. classes, call Java methods, and interact with the VM from within 
  50. the native system library. Also see JAVANMI.ZIP.
  51.  
  52. JAVANMI.ZIP
  53. Title: THE JAVA NATIVE METHOD INTERFACE AND WINDOWS
  54. Keywords: AUG97    JAVA   C++   JNI    WINDOWS
  55. Unpublished source code and related files accompanying the 
  56. article by Andrew Wilson in which he examines how the JDK 1.1 
  57. implements a native calling convention--the Java Native Method 
  58. Interface (JNI)--which makes it possible for the stub library to 
  59. do more than just convert types between Java and C++. With JDK 
  60. 1.1, you can create new instances of Java classes, call Java 
  61. methods, and interact with the VM from within the native system 
  62. library. Requires UNZIP/PKUNZIP to extract.
  63.  
  64. DAN0411.ZIP
  65. Title: INSIDE THE PENTIUM INTEGER BUG
  66. Keywords: AUG97    PENTIUM    MATH   BUGS
  67. Unpublished source code and executables accompanying the article 
  68. by Robert R. Collins in which he discusses the Dan-0411 math bug 
  69. associated with the Pentium Pro and Pentium II. Requires 
  70. UNZIP/PKUNZIP to extract. 
  71.  
  72. RCSC.ASC
  73. Title: RETARGETABLE CONCURRENT SMALL C
  74. Keywords: AUG97   C   SMALL C      CONCURRENCY    8051
  75. Published source code accompanying the article by Andy Yuen in 
  76. which he implements "Retargetable CSC" (RCSC), a retargetable 
  77. version of his Concurrent Small C. This port targets the 8051 
  78. microcontroller. Also see RCSC.ZIP.
  79.  
  80. RCSC.ZIP
  81. Title: RETARGETABLE CONCURRENT SMALL C
  82. Keywords: AUG97   C   SMALL C      CONCURRENCY    8051
  83. Complete source code and related files accompanying the article 
  84. by Andy Yuen in which he implements "Retargetable CSC" (RCSC), a 
  85. retargetable version of his Concurrent Small C. This port targets 
  86. the 8051 microcontroller. Requires UNZIP/PKUNZIP to extract.
  87.  
  88. ISERVER.ASC
  89. Title: WRITING ACTIVEX ISAPI EXTENSIONS
  90. Keywords: AUG97   ACTIVEX   C++   VISUAL BASIC   INTERNET  
  91. Published source code accompanying the article by Al Williams in 
  92. which he discusses how you can use an ISAPI DL to create active 
  93. web pages for Microsoft's Internet Information Server (IIS). Al 
  94. mixes up C++ and Visual Basic to create an ISAPI module that lets 
  95. you write ActiveX ISAPI extensions. Also see ISERVER.ZIP.
  96.  
  97. ISERVER.ZIP
  98. Title: WRITING ACTIVEX ISAPI EXTENSIONS
  99. Keywords: AUG97   ACTIVEX   C++   VISUAL BASIC   INTERNET  
  100. Complete source code and related files accompanying the article 
  101. by Al Williams in which he discusses how you can use an ISAPI DL 
  102. to create active web pages for Microsoft's Internet Information 
  103. Server (IIS). Al mixes up C++ and Visual Basic to create an ISAPI 
  104. module that lets you write ActiveX ISAPI extensions. Requires 
  105. UNZIP/PKUNZIP to extract.
  106.  
  107. DYNACE.ASC
  108. Title: ADVANCED OBJECT-ORIENTED FEATURES FOR C/C++
  109. Keywords: AUG97    C++   
  110. Published source code accompanying the article by Blake McBride 
  111. in which he presents Dynace, a development tool that to C or C++ 
  112. object-oriented capabilities previously only available in 
  113. languages such as Smalltalk and CLOS--but without the overhead 
  114. normally associated with those environments. Also see DYN401.ZIP
  115.  
  116. DYN401.ZIP
  117. Title: ADVANCED OBJECT-ORIENTED FEATURES FOR C/C++
  118. Keywords: AUG97    C++   
  119. Complete source code and related files accompanying the article 
  120. by Blake McBride in which he presents Dynace, a development tool 
  121. that to C or C++ object-oriented capabilities previously only 
  122. available in languages such as Smalltalk and CLOS--but without 
  123. the overhead normally associated with those environments. 
  124. Requires UNZIP/PKUNZIP to extract.
  125.  
  126. CCDBMS.ASC
  127. Title: CONCURRENT DATABASE COMMANDS AND C++
  128. Keywords: AUG97  C++  DBMS    ORACLE   
  129. Published source code accompanying the article by Harold 
  130. Kasperink and John Dekker in which they use Oracle ProC as an 
  131. embedded database command language to resolve multithreaded 
  132. porting problems using design patterns. Also see CCDBMS.ZIP.
  133.  
  134. CCDBMS.ZIP
  135. Title: CONCURRENT DATABASE COMMANDS AND C++
  136. Keywords: AUG97  C++  DBMS    ORACLE   
  137. Unpublished source code and related files accompanying the 
  138. article by Harold Kasperink and John Dekker in which they 
  139. use Oracle ProC as an embedded database command language to 
  140. resolve multithreaded porting problems using design patterns. 
  141. Requires UNZIP/PKUNZIP to extract.
  142.  
  143. JAVAQ&A.ASC
  144. Title: JAVA Q&A
  145. Keywords: AUG97      JAVA    JAR
  146. Published source code accompanying the column by Cliff Berg in 
  147. which he discusses how to create a JAR file.
  148.  
  149. AA897.ASC
  150. Title: ALGORITHM ALLEY
  151. Keywords: AUG97      SORTING    ALGORITHMS
  152. Published source code accompanying the article by Jonathan Pincus 
  153. and Jerry Schwarz in which they present a technique for 
  154. topological sorting. Also see AA897.ZIP.
  155.  
  156. AA897.ZIP
  157. Title: ALGORITHM ALLEY
  158. Keywords: AUG97      SORTING    ALGORITHMS
  159. Unpublished source code accompanying the article by Jonathan 
  160. Pincus and Jerry Schwarz in which they present a technique for 
  161. topological sorting. Requires UNZIP/PKUNZIP to extract.
  162.  
  163. UD897.ASC
  164. Title: UNDOCUMENTED CORNER
  165. Keywords: AUG97   MFC    ATL    VISUAL C++   WINDOWS
  166. Published source accompanying the column by George Shepherd and 
  167. Scot Wingo in which they continue their examination of 
  168. Microsoft's Active Template Library, this month looking at the 
  169. heart of ATL, including its support for multithreading and its 
  170. various implementations of IUnknown.
  171.  
  172.  
  173.